home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 114 / macaddict114.cdr / Software / Interface / DefaultFolderX-2.0.4.dmg / Default Folder X Installer.app / Contents / Resources / preflight.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2005-03-10  |  204 b   |  10 lines

  1. #!/bin/sh
  2.  
  3. ps -cx | grep "Default Folder X" > /dev/null
  4.  
  5. if [ $? -eq 0 ] 
  6. then
  7.     kill -3 `ps -cx | grep "Default Folder X" | sed "/^ */s///" | cut -d " " -f 1`
  8.     touch /tmp/DefaultFolderXRunning.${PPID}
  9. fi
  10.